Frontend Forever App
We have a mobile app for you to download and use. And you can unlock many features in the app.
Get it now
Intall Later
Run
HTML
CSS
Javascript
Output
#app-preloader { background: #111; height: 100%; left: 0; position: absolute; text-align: center; top: 0; width: 100%; } #app-preloader span { background: green; display: inline-block; height: 10px; margin: 0 5px; position: relative; top: 50%; transform: translateY(-50%); vertical-align: top; width: 10px; } #app-preloader span:nth-child(1) { animation: pulse 1s infinite 0.2s; } #app-preloader span:nth-child(2) { animation: pulse 1s infinite 0.4s; } #app-preloader span:nth-child(3) { animation: pulse 1s infinite 0.6s; } #app-preloader span:nth-child(4) { animation: pulse 1s infinite 0.8s; } #app-preloader span:nth-child(5) { animation: pulse 1s infinite 1s; } .no-cssanimations #app-preloader span { display: none; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }